c868752833cb79ee18d083b1b3e94d89bda2ce7d,src/main/java/il/org/spartan/spartanizer/cmdline/tables/Table_Summary.java,Table_Summary,summarizeSortedMethodStatistics,#String#,112

Before Change


      initializeWriter();
    gatherGeneralStatistics();
    writer//
        .col("Project", path)//
        .col("Statements", statements())//
        .col("Coverage", coverage())//
        .col("Methods", methods())//
        .col("Touched", touched())//
        .col("R-Index", rMethod())//
        .col("Nanos adopted", adopted())//
        .col("Fmethods", fMethods())//
        .col("Fiteratives", fIteratives())//
        .col("FconditionalExps", fConditionalExpressions())//
        .col("FconditionalStmts", fConditionalStatements())//
        .nl();
  }

After Change


      initializeWriter();
    gatherGeneralStatistics();
    writer//
        .col("Project", path)//
        .col("R-Index", rMethod())//
        .col("Nanos adopted", adopted())//
        .col("Statements", statements())//
        .col("Coverage", statementsCoverage())//
        .col("Methods", methods())//
        .col("Fmethods", fMethods())//
        .col("Touched", touched())//
        .col("Iteratives Coverage", iterativesCoverage())//
        .col("ConditionalExps", conditionalExpressionsCoverage())//
        .col("ConditionalStmts", conditionalStatementsCoverage())//
        .col("Expressions", expressionsCoverage())//
        .nl();
  }